Product Code Database
Example Keywords: skirt -socks $9-124
barcode-scavenger
   » » Wiki: Segmentation Fault
Tag Wiki 'Segmentation Fault'.
Tag

In , a segmentation fault (often shortened to segfault) or access violation is a raised by hardware with memory protection, notifying an (OS) that the software has attempted to access a restricted area of memory (a memory access violation). On standard x86 computers, this is a form of general protection fault. The operating system kernel will, in response, usually perform some corrective action, generally passing the fault on to the offending process by sending the process a signal. Processes can in some cases install a custom signal handler, allowing them to recover on their own, Expert C programming: deep C secrets By Peter Van der Linden, page 188 but otherwise the OS default signal handler is used, generally causing abnormal termination of the process (a program crash), and sometimes a .

Segmentation faults are a common class of error in programs written in languages like C that provide low-level memory access and few to no safety checks. They arise primarily due to errors in use of pointers for addressing, particularly illegal access. Another type of memory access error is a , which also has various causes, but is today much rarer; these occur primarily due to incorrect physical memory addressing, or due to misaligned memory access – these are memory references that the hardware cannot address, rather than references that a process is not allowed to address.

Many programming languages have mechanisms designed to avoid segmentation faults and improve memory safety. For example, Rust employs an ownership-based model to ensure memory safety. Other languages, such as Lisp and Java, employ garbage collection, which avoids certain classes of memory errors that could lead to segmentation faults.


Overview
A segmentation fault occurs when a program attempts to access a location that it is not allowed to access, or attempts to access a memory location in a way that is not allowed (for example, attempting to write to a location, or to overwrite part of the ).

The term "segmentation" has various uses in computing; in the context of "segmentation fault", it refers to the address space of a program. With memory protection, only the program's own address space is readable, and of this, only the and the read/write portion of the of a program are writable, while read-only data allocated in the const segment and the are not writable. Thus attempting to read outside of the program's address space, or writing to a read-only segment of the address space, results in a segmentation fault, hence the name.

On systems using hardware memory segmentation to provide , a segmentation fault occurs when the hardware detects an attempt to refer to a non-existent segment, or to refer to a location outside the bounds of a segment, or to refer to a location in a fashion not allowed by the permissions granted for that segment. On systems using only , an invalid page fault generally leads to a segmentation fault, and segmentation faults and page faults are both faults raised by the management system. Segmentation faults can also occur independently of page faults: illegal access to a valid page is a segmentation fault, but not an invalid page fault, and segmentation faults can occur in the middle of a page (hence no page fault), for example in a that stays within a page but illegally overwrites memory.

At the hardware level, the fault is initially raised by the memory management unit (MMU) on illegal access (if the referenced memory exists), as part of its memory protection feature, or an invalid page fault (if the referenced memory does not exist). If the problem is not an invalid logical address but instead an invalid physical address, a is raised instead, though these are not always distinguished.

At the operating system level, this fault is caught and a signal is passed on to the offending process, activating the process's handler for that signal. Different operating systems have different signal names to indicate that a segmentation fault has occurred. On operating systems, a signal called SIGSEGV (abbreviated from segmentation violation) is sent to the offending process. On Microsoft Windows, the offending process receives a STATUS_ACCESS_VIOLATION exception.


Causes
The conditions under which segmentation violations occur and how they manifest themselves are specific to hardware and the operating system: different hardware raises different faults for given conditions, and different operating systems convert these to different signals that are passed on to processes. The proximate cause is a memory access violation, while the underlying cause is generally a of some sort. Determining the root cause – the bug – can be simple in some cases, where the program will consistently cause a segmentation fault (e.g., dereferencing a ), while in other cases the bug can be difficult to reproduce and depend on memory allocation on each run (e.g., dereferencing a ).

The following are some typical causes of a segmentation fault:

  • Attempting to access a nonexistent memory address (outside process's address space)
  • Attempting to access memory the program does not have rights to (such as kernel structures in process context)
  • Attempting to write read-only memory (such as code segment)
These in turn are often caused by programming errors that result in invalid memory access:
  • Dereferencing a , which usually points to an address that's not part of the process's address space
  • Dereferencing or assigning to an uninitialized pointer (, which points to a random memory address)
  • Dereferencing or assigning to a freed pointer (, which points to memory that has been freed/deallocated/deleted)
  • A
  • A
  • Attempting to execute a program that does not compile correctly. (Some compilers will output an despite the presence of compile-time errors.)

In C code, segmentation faults most often occur because of errors in pointer use, particularly in C dynamic memory allocation. Dereferencing a null pointer, which results in undefined behavior, will usually cause a segmentation fault. This is because a null pointer cannot be a valid memory address. On the other hand, wild pointers and dangling pointers point to memory that may or may not exist, and may or may not be readable or writable, and thus can result in transient bugs. For example: char* p1 = NULL; // Null pointer char* p2; // Wild pointer: not initialized at all. char* p3 = (char*)malloc(10 * sizeof(char)); // Initialized pointer to allocated memory (assuming malloc did not fail)

free(p3); // p3 is now a dangling pointer, as memory has been freed Dereferencing any of these variables could cause a segmentation fault: dereferencing the null pointer generally will cause a segfault, while reading from the wild pointer may instead result in random data but no segfault, and reading from the dangling pointer may result in valid data for a while, and then random data as it is overwritten.


Handling
The default action for a segmentation fault or bus error is abnormal termination of the process that triggered it. A may be generated to aid debugging, and other platform-dependent actions may also be performed. For example, systems using the grsecurity patch may log SIGSEGV signals in order to monitor for possible intrusion attempts using .

On some systems, like Linux and Windows, it is possible for the program itself to handle a segmentation fault. Depending on the architecture and operating system, the running program can not only handle the event but may extract some information about its state like getting a , processor register values, the line of the source code when it was triggered, memory address that was invalidly accessed and whether the action was a read or a write.

Although a segmentation fault generally means that the program has a bug that needs fixing, it is also possible to intentionally cause such failure for the purposes of testing, debugging and also to emulate platforms where direct access to memory is needed. On the latter case, the system must be able to allow the program to run even after the fault occurs. In this case, when the system allows, it is possible to handle the event and increment the processor program counter to "jump" over the failing instruction to continue the execution.


Examples

Writing to read-only memory
Writing to read-only memory raises a segmentation fault. At the level of code errors, this occurs when the program writes to part of its own or the read-only portion of the , as these are loaded by the OS into read-only memory.

Here is an example of code that will generally cause a segmentation fault on platforms with memory protection. It attempts to modify a , which is undefined behavior according to the ANSI C standard. Most will not catch this at compile time, and instead compile this to executable code that will crash:

int main(void) {

   char* s = "hello world";
   *s = 'H';
     
}

When the program containing this code is compiled, the string is placed in the section of the program : the read-only section of the . When loaded, the operating system places it with other strings and constant data in a read-only segment of memory. When executed, a variable, s, is set to point to the string's location, and an attempt is made to write an character through the variable into the memory, causing a segmentation fault. Compiling such a program with a compiler that does not check for the assignment of read-only locations at compile time, and running it on a Unix-like operating system produces the following :

$ gcc segfault.c -g -o segfault $ ./segfault Segmentation fault

of the core file from :

Program received signal SIGSEGV, Segmentation fault. 0x1c0005c2 in main () at segfault.c:6 6 *s = 'H';

This code can be corrected by using an array instead of a character pointer, as this allocates memory on stack and initializes it to the value of the string literal: char s = "hello world"; s0 = 'H'; // equivalently, *s = 'H'; Even though string literals should not be modified (this has undefined behavior in the C standard), in C they are of static char[] type, so there is no implicit conversion in the original code (which points a char* at that array), while in C++ they are of static const char[] type, and thus there is an implicit conversion, so compilers will generally catch this particular error.


Null pointer dereference
In C and C-like languages, are used to mean "pointer to no object" and as an error indicator, and a null pointer (a read or write through a null pointer) is a very common program error. The C standard does not say that the null pointer is the same as the pointer to  0, though that may be the case in practice. Most operating systems map the null pointer's address such that accessing it causes a segmentation fault. This behavior is not guaranteed by the C standard. Dereferencing a null pointer is undefined behavior in C, and a conforming implementation is allowed to assume that any pointer that is dereferenced is not null.

int* ptr = NULL; printf("%d", *ptr);

This sample code creates a , and then tries to access its value (read the value). Doing so causes a segmentation fault at runtime on many operating systems.

Dereferencing a null pointer and then assigning to it (writing a value to a non-existent target) also usually causes a segmentation fault: int* ptr = NULL;

  • ptr = 1;

The following code includes a null pointer dereference, but when compiled will often not result in a segmentation fault, as the value is unused and thus the dereference will often be optimized away by dead code elimination: int* ptr = NULL;

  • ptr;


Buffer overflow
The following code accesses the character array s beyond its upper boundary. Depending on the compiler and the processor, this may result in a segmentation fault. char s = "hello world"; char c = s20;

Stack overflow
Another example is without a base case:

int main(void) {

   return main();
     
}

which causes the which results in a segmentation fault. Infinite recursion may not necessarily result in a stack overflow depending on the language, optimizations performed by the compiler and the exact structure of a code. In this case, the behavior of unreachable code (the return statement) is undefined, so the compiler can eliminate it and use a optimization that might result in no stack usage. Other optimizations could include translating the recursion into iteration, which, given the structure of the example function, would result in the program running forever, while probably not overflowing its stack.


See also


External links

Page 1 of 1
1
Page 1 of 1
1

Account

Social:
Pages:  ..   .. 
Items:  .. 

Navigation

General: Atom Feed Atom Feed  .. 
Help:  ..   .. 
Category:  ..   .. 
Media:  ..   .. 
Posts:  ..   ..   .. 

Statistics

Page:  .. 
Summary:  .. 
1 Tags
10/10 Page Rank
5 Page Refs
1s Time